home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000364_news@newsmaster….columbia.edu _Fri Sep 19 12:11:37 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA23800
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 19 Sep 1997 12:11:36 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA23627
  7.     for kermit.misc@watsun; Fri, 19 Sep 1997 12:11:36 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: ctrmkrmt
  12. Date: 19 Sep 1997 16:11:28 GMT
  13. Organization: Columbia University
  14. Lines: 24
  15. Message-ID: <5vu87g$886$1@apakabar.cc.columbia.edu>
  16. References: <34229EBE.4564@sprynet.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7688
  19.  
  20. In article <34229EBE.4564@sprynet.com>, JMS  <fif@sprynet.com> wrote:
  21. : Anyone familiar with the command ctrmkrmt?  We use this command for file
  22. : transfer but we have no documentation. The typical command line is:
  23. : ctrmkrmt -s <filename>
  24. : I am specifically trying to find a modifier that will transfer several
  25. : files in to one large file.
  26. It looks like C-Kermit, but stored under a different name.  If you had
  27. mentioned the hardware and software platform where you are using this command,
  28. I could be more specific.  In any case, dollars to donuts it's an ancient
  29. version of C-Kermit that could and should be replaced by the current version:
  30.  
  31.   http://www.columbia.edu/kermit/ck60.html
  32.  
  33. which is fully documented.
  34.  
  35. When using C-Kermit in UNIX, here is the trick for transferring multiple
  36. files in one large file:
  37.  
  38.   cat file1 file2 file3 ... | kermit -s -
  39.  
  40. - Frank